home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2000 February / PCW_2_2000.ISO / software / sw / notfall / xsetpsdk.exe / examples / testplug Events 1.xpl < prev    next >
Encoding:
Text File  |  1998-09-18  |  1012 b   |  40 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="7"
  3. "COUNT"="2"
  4. "TEXT 1"="Item 1"
  5. "TEXT 2"="Item 2"
  6. "UIPATH"="Test Plug-ins"
  7. "NAME"="Event Tester 1 (simple)"
  8. "LANGUAGE"="VBScript"
  9. "DESCRIPTION 1"="This plug-in shows which events are generated by X-Setup."
  10. "AUTHOR"="Xteq Systems"
  11. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  12.  
  13.  
  14.  
  15. 'Called when the Plugin is started
  16. Sub Plugin_Initialize 
  17.  DebugMsg "Plugin_Initialize invoked"
  18. End Sub
  19.  
  20.  
  21. 'Called when the Plugin should validate the Data the user has entered
  22. Sub Plugin_CheckData(ElementIndex)
  23.  DebugMsg "Plugin_CheckData invoked. ElementIndex: " & ElementIndex
  24. End Sub
  25.  
  26.  
  27. 'Called when the Plugin should apply the changes
  28. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  29.  DebugMsg "Plugin_Apply invoked. ElementIndex: " & ElementIndex & " ElementSubIndex: " & ElementSubIndex
  30. End Sub
  31.  
  32.  
  33. 'Called when the Plugin is about to be removed from memory
  34. Sub Plugin_Terminate 
  35.  DebugMsg "Plugin_Terminate invoked"
  36. End Sub
  37.  
  38.  
  39.  
  40.